Instructions for an AI agent: turn historical sources into a playable classroom game.
Version 0.1 (draft) · 2026-08-28 · License: CC BY 4.0 · Maintainer: kltng
| # Source: https://www.droidwin.com/remove-bloatware-debloat-oneplus-10-pro-no-root/ | |
| # | |
| pm uninstall -k --user 0 com.android.apps.tag # Stock android fluff | |
| pm uninstall -k --user 0 com.android.bips # Stock android fluff | |
| pm uninstall -k --user 0 com.android.bluetoothmidiservice # Stock android fluff | |
| pm uninstall -k --user 0 com.android.bookmarkprovider # Stock android fluff | |
| pm uninstall -k --user 0 com.android.calllogbackup # Stock android fluff | |
| pm uninstall -k --user 0 com.android.cellbroadcastreceiver.overlay.common # Stock android fluff | |
| pm uninstall -k --user 0 com.android.cts.priv.ctsshim # Stock android fluff | |
| pm uninstall -k --user 0 com.android.dreams.basic # Stock android AOD provider. This is needed for AOD to work fully |
These are the underlying contracts that power World ID. If you're looking to integrate with World ID, you should use the Foundry or
| VibeCoded AI-Slop License v1.0 | |
| Copyright (c) [YEAR] [AUTHOR] | |
| This software, source code, documentation, configuration, generated artifacts, | |
| and whatever else happened to end up in this repository (collectively, the | |
| "Software") is released under the VibeCoded AI-Slop License v1.0. | |
| 1. Permission |
| // https://arxiv.org/abs/2110.01111 | |
| function cantBelieveItCan(array) { | |
| const len = array.length; | |
| for (let i = 0; i < len; i++) { | |
| for (let j = 0; j < len; j++) { | |
| if (array[i] < array[j]) { | |
| let tmp = array[i]; | |
| array[i] = array[j]; | |
| array[j] = tmp; | |
| } |
| # On slow systems, checking the cached .zcompdump file to see if it must be | |
| # regenerated adds a noticable delay to zsh startup. This little hack restricts | |
| # it to once a day. It should be pasted into your own completion file. | |
| # | |
| # The globbing is a little complicated here: | |
| # - '#q' is an explicit glob qualifier that makes globbing work within zsh's [[ ]] construct. | |
| # - 'N' makes the glob pattern evaluate to nothing when it doesn't match (rather than throw a globbing error) | |
| # - '.' matches "regular files" | |
| # - 'mh+24' matches files (or directories or whatever) that are older than 24 hours. | |
| autoload -Uz compinit |
| #!/bin/bash | |
| # https://github.com/scruel/xiaomi-storage-nas-enable-ssh | |
| # Ver: 1.0.8.425.F24C26D24-REL (Enhanced) | |
| # 食用步骤: | |
| # - 登录小米智能存储客户端,以拉取证书文件 | |
| # - 打开终端(Windows 下请使用 WSL Ubuntu 终端) | |
| # - 终端执行 bash <(curl -s https://gist.githubusercontent.com/scruel/6b01bfa6847170f6edfaa07362b6d2fa/raw/xiaomi-storage-open-ssh-wsl.sh) | |
| # - 提示执行完毕,输出 root 信息即成功,APP 文件中也能看到 SUCCESS。 | |
| # 终端依赖:openssl, curl, ssh-keygen, wslpath (WSL) |